home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / cperf-21.lha / cperf-2.1 / Makefile < prev    next >
Makefile  |  1989-07-02  |  1KB  |  42 lines

  1. # Copyright (C) 1989 Free Software Foundation, Inc.
  2. # written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  3. # This file is part of GNU GPERF.
  4. # GNU GPERF is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 1, or (at your option)
  7. # any later version.
  8. # GNU GPERF is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with GNU GPERF; see the file COPYING.  If not, write to
  14. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  15.  
  16. GPERF = ../src/gperf
  17.  
  18. all: gperf tests
  19.  
  20. gperf: 
  21.     (cd src; $(MAKE))
  22.  
  23. tests: gperf
  24.     (cd tests; $(MAKE) GPERF=$(GPERF))
  25.  
  26. distrib: 
  27.     (cd ..; rm -f cperf.tar.Z; tar cvf cperf.tar cperf; compress cperf.tar; uuencode cperf.tar.Z < cperf.tar.Z > CSHAR)
  28.  
  29. clean: 
  30.     (cd src; $(MAKE) clean)
  31.     (cd tests; $(MAKE) clean)
  32.  
  33. realclean: 
  34.     (cd src; $(MAKE) realclean)
  35.     (cd tests; $(MAKE) clean)
  36.     -rm -f gperf.info* gperf.?? gperf.??s gperf.log gperf.toc \
  37.           gperf.*aux *inset.c *out gperf
  38.